do some additional initializing
authorØyvind Kolås <ok@src.gnome.org>
Sun, 18 Sep 2005 20:44:26 +0000 (20:44 +0000)
committerØyvind Kolås <ok@src.gnome.org>
Sun, 18 Sep 2005 20:44:26 +0000 (20:44 +0000)
ChangeLog
babl/babl.c
babl/babl.h

index 20f7585a5997409bee64bb6db85c76f43d079ba2..b97e751955804bc5d2ce27919269df0777ced1bc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-18  Øyvind Kolås  <pippin@gimp.org>
+
+       * babl/babl.c: (babl_init),
+       * babl/babl.h: made babl_fish variadic.
+
 2005-09-18  Øyvind Kolås  <pippin@gimp.org>
 
        * babl/babl-memory.[ch]: (babl_free), (babl_realloc): made babl_free
index ea838ae61dcf66aa988c99a9252a814027eb53d6..438a0543b6392a06c5e2a7678a8fe91c3a562523 100644 (file)
@@ -41,6 +41,9 @@ babl_init (void)
       babl_sanity ();
       babl_fish_init ();
       babl_sanity ();
+      babl_extension_post_load ();  /* measure timings and errors */
+      babl_sanity ();
+
     }
 }
 
index 6b6085fb683ebae58c10a2eeadf0e6bca3366431..ebedf68ca7b5688df8f6b8b731777319c0adc178 100644 (file)
@@ -73,7 +73,8 @@ typedef int  (*BablEachFunction) (Babl *entry,
  *  either strings with the names of the formats or BablFormat objects.
  */
 Babl * babl_fish       (void *source_format,
-                        void *destination_format);
+                        void *destination_format,
+                        ...);
 
 /** Process n pixels from source to destination using babl_fish,
  *  returns number of pixels converted.